projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b207d6b
)
(x_make_frame_visible): Use XtMapWidget, not XtPopup.
author
Richard M. Stallman
<rms@gnu.org>
Thu, 28 Apr 1994 07:46:27 +0000
(07:46 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 28 Apr 1994 07:46:27 +0000
(07:46 +0000)
src/xterm.c
patch
|
blob
|
history
diff --git
a/src/xterm.c
b/src/xterm.c
index cb43d39308e3e6be81478601282a54fa9eca8750..f35d3be6e5dc5dff57440ff7b2baf2e1c683f280 100644
(file)
--- a/
src/xterm.c
+++ b/
src/xterm.c
@@
-5389,7
+5389,8
@@
x_make_frame_visible (f)
if (! EQ (Vx_no_window_manager, Qt))
x_wm_set_window_state (f, NormalState);
#ifdef USE_X_TOOLKIT
- XtPopup (f->display.x->widget, XtGrabNone);
+ /* This was XtPopup, but that did nothing for an iconified frame. */
+ XtMapWidget (f->display.x->widget);
#else /* not USE_X_TOOLKIT */
XMapWindow (XDISPLAY FRAME_X_WINDOW (f));
#endif /* not USE_X_TOOLKIT */